home *** CD-ROM | disk | FTP | other *** search
/ Painter Bear's Language Bridge — Italian / Bridge_ponte_itialian.iso / pc / helpers / open.dxr / 00022_wordSearch script.ls < prev    next >
Encoding:
Text File  |  2001-02-22  |  297 b   |  16 lines

  1. on exitFrame
  2.   global gCurrSndList, gCurrAnimaList
  3.   if (gCurrSndList <> []) and not soundBusy(1) then
  4.     advanceSndList()
  5.   end if
  6.   go(the frame)
  7. end
  8.  
  9. on keyUp
  10.   if ("abcdefghijklmnopqrstuvwxyz" contains the key) or (the key = BACKSPACE) then
  11.     findWord()
  12.   else
  13.     stopEvent()
  14.   end if
  15. end
  16.